home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CODE.PAK / TESTDLL.H
C/C++ Source or Header  |  1997-05-06  |  253b  |  11 lines

  1. // Form interface definition
  2. #include <ole2.h>
  3.  
  4. class IMyObj: public IUnknown
  5. {
  6.   virtual int __stdcall GoNext() = 0;
  7.   virtual int __stdcall GoPrev() = 0;
  8. };
  9.  
  10. extern "C" HWND __import __stdcall MakeTestForm(HWND hwndParent, LPUNKNOWN &pObj);
  11.